home *** CD-ROM | disk | FTP | other *** search
/ NeXT Education Software Sampler 1992 Fall / NeXT Education Software Sampler 1992 Fall.iso / Programming / Source / WAIS / next-ui / BarChartCell.h < prev    next >
Encoding:
Text File  |  1992-02-03  |  538 b   |  26 lines

  1. // BarChartCell.h
  2. //
  3. // Free software created 1 Feb 1992
  4. // by Paul Burchard <burchard@math.utah.edu>.
  5.  
  6. #import <appkit/TextFieldCell.h>
  7.  
  8. @interface BarChartCell : TextFieldCell
  9. {
  10.     float barValue;
  11.     float barSize, padding;
  12.     float barGray;
  13. }
  14.  
  15. - initTextCell:(const char *)aString;
  16. - drawInside:(const NXRect *)cellFrame inView:controlView;
  17. - setBarValue:(float)aValue;
  18. - (float)barValue;
  19. - setBarSize:(float)aValue;
  20. - (float)barSize;
  21. - setPadding:(float)aValue;
  22. - (float)padding;
  23. - setBarGray:(float)aValue;
  24. - (float)barGray;
  25.  
  26. @end